Click or drag to resize

WebdavSession Class

This class is for the session management of Resource class.
Inheritance Hierarchy
SystemObject
  Independentsoft.WebdavWebdavSession

Namespace:  Independentsoft.Webdav
Assembly:  Independentsoft.Webdav (in Independentsoft.Webdav.dll) Version: 1.0.700.18437
Syntax
public class WebdavSession

The WebdavSession type exposes the following members.

Constructors
  NameDescription
Public methodWebdavSession
Initializes a new instance of the WebdavSession class.
Public methodWebdavSession(ICredentials)
Initializes a new instance of the WebdavSession class.
Public methodWebdavSession(WebProxy)
Initializes a new instance of the WebdavSession class with proxy support.
Public methodWebdavSession(ICredentials, WebProxy)
Initializes a new instance of the WebdavSession class.
Top
Properties
  NameDescription
Public propertyCredentials
Gets or sets the network credentials used to authenticate the request with the Internet resource.
Public propertyProxy
Gets or sets proxy information for the session.
Top
Methods
  NameDescription
Public methodEquals (Inherited from Object.)
Protected methodFinalize (Inherited from Object.)
Public methodGetHashCode (Inherited from Object.)
Public methodGetType (Inherited from Object.)
Protected methodMemberwiseClone (Inherited from Object.)
Public methodToString (Inherited from Object.)
Top
Examples
The following example demonstrates how to use this class:
NetworkCredential credential = new NetworkCredential("Administrator","password123");
WebdavSession session = new WebdavSession(credential);
See Also